home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
STRINGS
/
TPSTR7
/
EXAM16.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-03-11
|
3KB
|
63 lines
Program Exam16;
{**************************************************************************}
{ }
{ Ce programme démontre les possibilités de ChrQtyx. }
{ }
{**************************************************************************}
Uses
TpStr;
Var
S1 : String;
I : Integer;
{ --------------------------------------------------------------- }
{ Function ChrQty(Str: String;Match: Char): Integer; }
{ --------------------------------------------------------------- }
{ }
{ Effet : Retourne la quantité de caractères correspondant à <Match> }
{ trouvés dans <Str> ou 0 si <Match> n'est pas rencontré. }
{ }
{ Usage : Chaîne pascal. }
{ }
{ Vitesse : 7800/s }
{ }
{ -------------------------------------------------------------------------}
Procedure Test1;
Begin
S1 := 'abacadaeafagahaiajakalamanaoapaqarasatauavawaxayaz';
I := ChrQty(S1,'a');
S1 := '3.14116';
I := ChrQty(S1,'0');
end;
{ --------------------------------------------------------------- }
{ Function ChrQtyI(Str: String;Match: Char):Integer; }
{ --------------------------------------------------------------- }
{ }
{ Effet : Identique à ChrPosR, mais sans tenir compte des }
{ majuscules/minuscules. }
{ }
{ Usage : Idem. }
{ }
{ Vitesse : 7800/s }
{ }
{ -------------------------------------------------------------------------}
Procedure Test2;
Begin
S1 := 'abacadaeafagahaiajakalamanaoapaqarasatauavawaxayaz';
I := ChrQtyI(S1,'A');
I := ChrQtyI(S1,'1');
end;
Begin
Test1;
Test2;
End.
{ -------------------------------------------------------------------------}